home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / ITEMPROP.DTML < prev    next >
Encoding:
Text File  |  1999-11-03  |  2.2 KB  |  68 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en"><HEAD><TITLE>Basic Instance Properties</TITLE></HEAD>
  3. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  4. <dtml-var manage_tabs>
  5. <p>Instance Icons are displayed with images in management interfaces.
  6. Select an image file from your local computer by clicking the
  7. <em>Browse</em> button. The image you select will be uploaded
  8. to the class for use by instances.</p>
  9. <p>The instance icon property will be set to give a path to the image.
  10. The path will be based on the current location of this class and
  11. will need to be adjusted if the class is moved.</p>
  12.  
  13. <FORM ACTION="manage_edit" METHOD="POST"
  14.       ENCTYPE="multipart/form-data">
  15. <TABLE CELLSPACING="2">
  16. <TR>
  17.   <TH ALIGN="LEFT" VALIGN="TOP">Base classes</TH>
  18.   <TD ALIGN="LEFT" VALIGN="TOP"><dtml-var "_.string.join(ZClassBaseClassNames(), ', ')">
  19.   </TD>
  20. </TR>
  21. <TR>
  22.   <TH ALIGN="LEFT" VALIGN="TOP">title</TH>
  23.   <TD ALIGN="LEFT" VALIGN="TOP">
  24.     <INPUT TYPE="TEXT" NAME="title" SIZE="40"
  25.      value="<dtml-var zClassTitle html_quote>">
  26.   </TD>
  27. </TR>
  28. <TR>
  29.   <TH ALIGN="LEFT" VALIGN="TOP">meta type</TH>
  30.   <TD ALIGN="LEFT" VALIGN="TOP">
  31.     <INPUT TYPE="TEXT" NAME="meta_type" SIZE="40"
  32.      value="<dtml-var classMetaType html_quote>">
  33.   </TD>
  34. </TR>
  35. <dtml-if show_class_id>
  36. <TR>
  37.   <TH ALIGN="LEFT" VALIGN="TOP">class id</TH>
  38.   <TD ALIGN="LEFT" VALIGN="TOP">
  39.     <INPUT TYPE="TEXT" NAME="class_id" SIZE="40"
  40.      value="<dtml-var class_id html_quote>">
  41.   </TD>
  42. </TR>
  43. </dtml-if>
  44. <TR>
  45.   <TH ALIGN="LEFT" VALIGN="TOP"><EM>icon</EM></TH>
  46.   <TD ALIGN="LEFT" VALIGN="TOP">
  47.     <INPUT TYPE="TEXT" NAME="icon" SIZE="40"
  48.      value="<dtml-var classIcon html_quote>">
  49.   </TD>
  50. </TR>
  51. <TR>
  52.   <TD ALIGN="LEFT" VALIGN="TOP">
  53.   <STRONG>Icon image</STRONG>
  54.   </TD>
  55.   <TD ALIGN="LEFT" VALIGN="TOP">
  56.   <dtml-if classIcon>
  57.   <img src="<dtml-var SCRIPT_NAME>/<dtml-var classIcon
  58.      >?t=<dtml-var ZopeTime fmt=second>" border="0"><br>
  59.   </dtml-if>
  60.   <INPUT TYPE="file" NAME="file" SIZE="25" VALUE="">
  61.   </TD>
  62. </TR>
  63. <TR>
  64.   <TD></TD><TD><BR><INPUT TYPE="SUBMIT" VALUE=" Change "></TD>
  65. </TR>
  66. </TABLE></FORM></BODY></HTML>
  67.  
  68.